'Declaration <DefaultValueAttribute(0)> <DescriptionAttribute("The ratio of distance between two cell columns to cell width.")> Public Property DistanceBetweenColumns As Single
[DefaultValue(0)] [Description("The ratio of distance between two cell columns to cell width.")] public float DistanceBetweenColumns { get; set; }
[DefaultValue(0)] [Description("The ratio of distance between two cell columns to cell width.")] public: __property float get_DistanceBetweenColumns(); public: __property void set_DistanceBetweenColumns(
float value
);
[DefaultValue(0)] [Description("The ratio of distance between two cell columns to cell width.")] public:
property float DistanceBetweenColumns { float get(); void set(float value); }
Property Value
Valid values are 0 and any positive value:
Default value is 0 (i.e., no distance between cell columns).
- 0 - there is no distance between cell columns
- from 0 to 1 - distance between cell columns is less than cell width
- 1 - distance between cell columns is equal to cell width
- greater than 1 - distance between cell columns is greater than cell width
Default value is 0 (i.e., no distance between cell columns).